66e88a1661c71eedd28337dc0da3fce1e0b9bbb0,web/src/main/java/org/jboss/as/web/NewWebSubsystemAdd.java,NewWebSubsystemAdd,execute,#NewOperationContext#ModelNode#ResultHandler#,61

Before Change


            ctx.addDeploymentProcessor(Phase.INSTALL, Phase.INSTALL_WAR_DEPLOYMENT, new WarDeploymentProcessor(defaultHost));
        }

        updateContext.getSubModel().get(CommonAttributes.CONTAINER_CONFIG).set(config);

        resultHandler.handleResultComplete(compensatingOperation);

After Change


            ctx.addDeploymentProcessor(Phase.INSTALL, Phase.INSTALL_WAR_DEPLOYMENT, new WarDeploymentProcessor(defaultHost));
        }

        final ModelNode subModel = updateContext.getSubModel();
        subModel.get(CommonAttributes.CONTAINER_CONFIG).set(config);
        subModel.get(CommonAttributes.CONNECTOR).setEmptyList();
        subModel.get(CommonAttributes.VIRTUAL_SERVER).setEmptyList();

        resultHandler.handleResultComplete(compensatingOperation);